home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- rem THIS IS THE THIRD PASS. Only allow processing to proceed if
- rem the first argument is YES, which indicates that it's OK to
- rem go on.
-
- if not "%1"=="YES" goto abort
-
- rem Execute pass 3
- tex tadsman
-
- rem Now do the table of contents, title pages, etc
- tex tadsttl
-
- goto done
-
- :abort
- echo This is Pass 3. Only run this pass after you have hand-edited
- echo TADSINX.TEX to contain the final (sorted) index. TADSINDX.UNI
- echo will contain the raw data for the index, automatically generated
- echo by pass 2. When you really want to run pass 3, run this script
- echo again with YES as the first parameter.
-
- :done
-